home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Freeware / Adobe Air 1.5 / AdobeAIRInstaller.exe / setup.swf / scripts / mx / states / IOverride.as < prev    next >
Encoding:
Text File  |  2008-10-29  |  261 b   |  15 lines

  1. package mx.states
  2. {
  3.    import mx.core.UIComponent;
  4.    
  5.    public interface IOverride
  6.    {
  7.       function initialize() : void;
  8.       
  9.       function remove(param1:UIComponent) : void;
  10.       
  11.       function apply(param1:UIComponent) : void;
  12.    }
  13. }
  14.  
  15.